home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / BSP Tree 1.2 / Sources / Core / include / tabstop.h < prev    next >
Encoding:
Text File  |  1995-03-26  |  1.3 KB  |  31 lines  |  [TEXT/MMCC]

  1. //------------------------------------------------------------------------------
  2. //    File:                    tabstop.h
  3. //    Date:                    9/19/94
  4. //    Author:                Bretton Wade
  5. //
  6. //    Description:    this file contains the class definition for a tabstop widget.
  7. //                                a tabstop widget is a widget that can be reached by tabbing.
  8. //
  9. //------------------------------------------------------------------------------
  10.  
  11. #include "widget.h"
  12.  
  13. #ifndef    TABSTOP
  14. #define    TABSTOP
  15.  
  16. //------------------------------------------------------------------------------
  17. //    classes
  18. //------------------------------------------------------------------------------
  19. class    tabstop : public widget                                                                                                        //    user interface widget class
  20. {                                                                                                                                                                //    begin
  21.     private:                                                                                                                                            //    members internal to this class only
  22.     protected:                                                                                                                                        //    members internal to this class hierarchy
  23.     public:                                                                                                                                                //    members available externally
  24.                 tabstop (void) : widget () {}                                                                                        //    constructor
  25. virtual    void        Hilite (bool);                                                                                                    //    tell the widget to hilite or unhilite itself
  26. };                                                                                                                                                            //    end
  27.  
  28. //------------------------------------------------------------------------------
  29.  
  30. #endif    //TABSTOP
  31.